home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / system / pgraf130.zip / C.ZIP / MAKE.MSC < prev    next >
Text File  |  1991-04-13  |  859b  |  25 lines

  1. #
  2. # MS MAKE makefile for PGRAPH Demo...
  3. #
  4. # -DMSC                    Define MSC for conditional compilation
  5. # -AL                      Large Model
  6. # -I\msc\include           Identify default #include directory
  7. # -Ox                      Maximum optimisation
  8. # -Gs                      No stack checking
  9. # -Zp1                     Byte-align structure members. (Word align -Zp2, DWord align -Zp4).
  10. # -c                       Compile only (no link)
  11.  
  12. CL=\msc\cl -DMSC -AL -I\msc\include -Ox -Gs -Zp1 -c
  13.  
  14. msc\demo.obj: demo.c pgraph.h
  15.    $(CL) -Fomsc\demo.obj demo.c
  16.  
  17. msc\demo_sub.obj: demo_sub.c pgraph.h
  18.    $(CL) -Fomsc\demo_sub.obj demo_sub.c
  19.  
  20. msc\demo.exe: msc\demo_sub.obj msc\pgraph.lib
  21.    \msc\link /NOE msc\demo msc\demo_sub face,\
  22.    msc\demo.exe,nul,\
  23.    \msc\lib\llibce \msc\lib\slibce \msc\lib\graphics msc\pgraph msc\various
  24.  
  25.